home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_13_10
/
jagger
/
printf1.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-07-25
|
235 b
|
16 lines
/* Listing 3, printf.h, version 1 */
#ifndef PRINTF_H
#define PRINTF_H
#ifndef NDEBUG
#ifdef printf
#undef printf
#endif
#define printf DB_printf
int DB_printf( const char format[], ... );
#endif /* NDEBUG */
#endif /* PRINTF_H */